![]() ![]() |
10.4:H310103 Provide linear text alternative when the Web content are presented as Tables.Improper designThere is no linear text alternative when the Web content are presented as tables. Improper design:
<TABLE border="0" cellspacing="0" cellpadding="10">
<TR>
<TD>
<P>Taipei region has fine weather today, sunny afternoon, temperature around 22-25 degree.</P>
</TD>
<TD>
<P>Hot weather in the coming week for all regions, thunder rain in the afternoon, please take precaution.</P>
</TD>
</TR>
</TABLE>
End of example Proper demonstrationProvide linear text alternative when the Web content are presented as Tables. Proper example:
<A href="linkto/weather_tai.jsp">Taipei region weather for today and the coming week</A>
<TABLE border="0" cellspacing="0" cellpadding="10">
<TR>
<TD>
<P>Taipei region has fine weather today, sunny afternoon, temperature around 22-25 degree.</P>
</TD>
<TD>
<P>Hot weather in the coming week for all regions, thunder rain in the afternoon, please take precaution.</P>
</TD>
</TR>
</TABLE>
End of example |